home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2010 Summer - Disc 1 / WN_Ete2010_CD1.iso / Onglet5 / Weezo / Weezo setup.exe / {code_appDir} / www / local / localFunctions.php < prev    next >
PHP Script  |  2010-05-19  |  246b  |  9 lines

  1. <?php
  2. function lfInit(){
  3.     if($_SERVER['REMOTE_ADDR']!='127.0.0.1') die('unauthorized access');
  4.  
  5.     $_ENV['configurationEnvironment']='application';
  6.  
  7.     require_once(INCLUDE_DIR.'outputFunctions.php');
  8.     require_once(INCLUDE_DIR.'initFunctions.php');
  9. }